home *** CD-ROM | disk | FTP | other *** search
/ Space & Astronomy / Space and Astronomy (October 1993).iso / mac / TEXT / SPACEDIG / V08 / V8_350.TXT < prev    next >
Internet Message Format  |  1991-07-08  |  19KB

  1. Return-path: <ota+space.mail-errors@andrew.cmu.edu>
  2. X-Andrew-Authenticated-as: 0;andrew.cmu.edu;Network-Mail
  3. Received: from andrew.cmu.edu via trymail for +dist+/afs/andrew.cmu.edu/usr1/ota/space/space.dl@andrew.cmu.edu (->+dist+/afs/andrew.cmu.edu/usr1/ota/space/space.dl) (->ota+space.digests)
  4.           ID </afs/andrew.cmu.edu/usr1/ota/Mailbox/andrew.cmu.edu.3644.0.0>;
  5.           Mon,  5 Sep 88 22:05:20 -0400 (EDT)
  6. Received: from andrew.cmu.edu via qmail
  7.           ID </afs/andrew.cmu.edu/service/mailqs/q001/QF.andrew.cmu.edu.23234779.54fe3b>;
  8.           Mon,  5 Sep 88 22:03:41 -0400 (EDT)
  9. Received: by andrew.cmu.edu (5.54/3.15) id <AA03637> for +dist+/afs/andrew.cmu.edu/usr1/ota/space/space.dl; Mon, 5 Sep 88 22:02:50 EDT
  10. Received: by angband.s1.gov id AA01144; Mon, 5 Sep 88 19:04:53 PDT
  11.     id AA01144; Mon, 5 Sep 88 19:04:53 PDT
  12. Date: Mon, 5 Sep 88 19:04:53 PDT
  13. From: Ted Anderson <ota@angband.s1.gov>
  14. Message-Id: <8809060204.AA01144@angband.s1.gov>
  15. To: Space+@andrew.cmu.edu
  16. Reply-To: Space+@andrew.cmu.edu
  17. Subject: SPACE Digest V8 #350
  18.  
  19. SPACE Digest                                      Volume 8 : Issue 350
  20.  
  21. Today's Topics:
  22.              Initials for the Uninitiated
  23.             Orbital Mech Algorithm
  24.                Interstellar Mining (?)
  25.            RE space expoitation/exploration
  26. TRW selected to develop Advanced X-ray Astrophysics Facility (Forwarded)
  27.          Re: Why *THEY* might want to eat our lunch.
  28.           Re: space news from July 11 AW&ST
  29.         Re: SETI: Why don't we hear anything?
  30.          RE:  space exploitation/exploration
  31. ----------------------------------------------------------------------
  32.  
  33. Date: 23 Aug 88 07:53:06 GMT
  34. From: amdahl!nsc!taux01!taux02!amos@ames.arc.nasa.gov  (Amos Shapir)
  35. Subject: Initials for the Uninitiated
  36.  
  37. Would it  be too  much to  ask of posters  in this  group not  to assume
  38. everybody understands the  initials they use? I guess  most readers know
  39. what NASA or SDI mean, and in this  group it's pretty safe to use ESA or
  40. USAF, but I'm sure many readers are bewildered by AXAF, FRF, AW&ST, NRC,
  41. OMV,  SRB, RCS  or SSME,  to quote  just a  few used  in the  referenced
  42. article.
  43.  
  44. No, don't rush to post or mail  me explanations of these, I have already
  45. taken the trouble to look them up;  all I ask is that future posters use
  46. the  full  text of  the  initials,  at least  the  first  time they  are
  47. mentioned.
  48. -- 
  49.     Amos Shapir                amos@nsc.com
  50. National Semiconductor (Israel)
  51. 6 Maskit st. P.O.B. 3007, Herzlia 46104, Israel  Tel. +972 52 522261
  52. 34 48 E / 32 10 N            (My other cpu is a NS32532)
  53.  
  54. ------------------------------
  55.  
  56. Date:    Tue, 23 Aug 88 10:09:23 PDT
  57. From: greer%23666%utadnx%utspan.span@vlsi.jpl.nasa.gov
  58. Subject: Orbital Mech Algorithm
  59. X-St-Vmsmail-To: JPLLSI::"SPACE@angband.s1.gov"
  60.  
  61.  
  62. Re: Orbital Mechanics questions asked by Munck, answered by Mueller
  63.  
  64. >I'd like to call on the combined expertise of the net for something I've
  65. >been unable to find;  it's entirely on a "hobby" basis, no connection
  66. >with anything commercial.
  67. >I want a simple, fast subroutine that will compute orbital motions...
  68.  
  69. >>You are attacking a non-trivial problem.
  70.  
  71.  
  72. The triviality of a mathematical task depends on the accuracy desired and the
  73. compute power available. 
  74.  
  75.     A general orbital mech algorithm can be very simple, e.g.:
  76.  
  77.         Do
  78.           a = -G*M*r/|r|**3
  79.               v = v0 + a*dt
  80.           r = r0 + v*dt + 0.5*a*dt**2
  81.         Loop
  82.  
  83.     Where r, v, and a are vectors, G is the gravitational constant, and M
  84. is the mass of the body being orbited.  This algorithm may not do well to
  85. figure when MIR will next be overhead, but it's good enough to give a feel for
  86. orbital mechanics.  More stuff can be added to the acceleration: 
  87.  
  88.     a = -G*M1*r1/|r1|**3 - G*M2*r2/|r2|**3 - ...
  89.             + thrust + any_other_acceleration
  90.  
  91.     The accuracy, for *spherically symmetrical* bodies, depends on the ratio
  92. v*dt:rM, since the algorithm assumes the acceleration is constant over the
  93. period dt.  In a highly eccentric orbit, for example, the inaccuracy will be
  94. greater near the periapsid than near the apoapsid.  Interestingly, this effect
  95. is completely conservative over the period of an orbit, since the errors on one
  96. one half of the orbit negate the errors on the other half.  The orbit keeps its
  97. shape but precesses at a rate dependent on the ratio v*dt:r_periapsid. 
  98.     Oops! I guess that means it isn't *completely* conservative if there is
  99. precession, but the semi-major axis stays the same, even if the line of apsides
  100. moves around.
  101.     The algorithm is plenty fast enough to do an engaging and enlightening
  102. simulation on the Mac, i.e., Orbital Mech (TM), even without the use of the
  103. floating point unit of the Mac II.  I wrote Orbital Mech to run on any Mac, and
  104. had to assume no FPU would be available.  I think you could do a pretty hot
  105. orbital simulator with an 80386 and FPU.
  106.  
  107. "I feel like somebody strapped a        |       Dale M. Greer
  108.  couple of jet engines on my back        | Center for Space Sciences,
  109.  and we're ready to take off!"            |       UT at Dallas
  110.                  -- Pat Robertson
  111.  
  112. ------------------------------
  113.  
  114. Date: 23 Aug 88 17:04:25 GMT
  115. From: cfa!cfa250!willner@husc6.harvard.edu  (Steve Willner P-316 x57123)
  116. Subject: Interstellar Mining (?)
  117.  
  118. From article <3695@drivax.UUCP>, by macleod@drivax.UUCP (MacLeod):
  119. > Given the unlikelihood of cheap transmutation of elements, even spacefaring
  120. > races will probably continue to be interested in rare elements.  If Earth's
  121. > crust is abnormally rich in these, we may be in for interesting times ahead.
  122.  
  123. Transmutation of elements typically takes about 0.1% of the rest mass
  124. energy.  This amount of energy corresponds to a speed of about 3% of
  125. light or about a 100 year trip to alpha Cen.  (Note: Piddly factors
  126. of 2 and such are ignored.  The calculation implicitly assumes that
  127. the mass of the interstellar vessel is mostly payload.)  The
  128. energetics thus suggest that interstellar travel and element
  129. transmutation are about equally difficult.
  130.  
  131. Speculating on the economics of advanced societies is a dubious
  132. proposition, but it seems to me that transmutation would be
  133. economically more attractive because of the shorter payback period
  134. and thus the lower cost of capital equipment.  In fact, I would turn
  135. the argument around and say that any interstellar-travelling society
  136. is likely to use element transmutation routinely.
  137.  
  138. -- 
  139. Steve Willner            Phone 617-495-7123         Bitnet:   willner@cfa
  140. 60 Garden St.            FTS:      830-7123           UUCP:   willner@cfa
  141. Cambridge, MA 02138 USA                 Internet: willner@cfa.harvard.edu
  142.  
  143. ------------------------------
  144.  
  145. Date: 23 Aug 88 15:18:00 GMT
  146. From: apollo!nelson_p@eddie.mit.edu  (Peter Nelson)
  147. Subject: RE space expoitation/exploration
  148.  
  149.  
  150. > **********WARNING: NEW KID ON THE BLOCK WITH A CHIP ON HIS SHOULDER********
  151.  
  152. > Space is not some natural resource which can or should be controlled by an
  153. > governmental or extra-governmental entity.  Instead, it is a resource much
  154.  [ ... ] 
  155.  
  156. > Why?  Mankind needs room, we need to get off each other's shoulders. The
  157. > sooner we spread out in this system (and beyond, but that happens MUCH
  158. > later) the sooner we, as a race, can start believing that we might survive
  159. > our own stupidity.  There's plenty of room out there for Palestine or
  160. > Armenia or even White South Africa.  And something for the misfits in our
  161. > society who would have been trappers and explorers and miners in a previous
  162. > era.
  163.  
  164.   Sure if you don't mind living in lo-grav, crowded quarters and never
  165.   going to the beach.  I don't know what you mean by 'room' but unless
  166.   you like living in a pressure suit you're going to be living 'indoors'
  167.   all the time.  Sounds cramped to me.  Besides you miss the entire point 
  168.   of what the Palestinians, white South Africans, et al, want.
  169.         
  170.   Currently the world's population is growing at about 75 million
  171.   people a year.  Even if we could slow our population growth to 50
  172.   million a year, we'd have to ship a million people a week into space
  173.   just to break even.  It's not like shipping colonists to the New World.
  174.   The shelter, food, and life-support systems for them would have to be
  175.   waiting when they arrived.
  176.  
  177. > Basically, though, none of this will happen if some Mickey Mouse (sorry
  178. > Walt) third world country claims co-soveriegnty by virtue of some "natural
  179. > right to share".  On the other hand, if I'm up there (and I plan to be),
  180. > then any one who disputes me is welcome to come up with me.
  181.  
  182.   What do you mean by 'plan' to be?  My wife and I plan to take a
  183.   vacation soon in Australia.  I've charted out my route, made
  184.   airline arrangements, computed costs, determined how long I can stay, etc.
  185.   What does your 'plan' consist of?   What have you *actually done* to
  186.   further your plan?  
  187.  
  188.   One of the (many) reasons why our space program is going nowhere fast
  189.   is that we have too many romantic dreamers who spend their time reading
  190.   Omni and watching reruns of Star Trek and too few pragmatists.  Do you
  191.   have any idea what it costs to even put a *handful* of people into 
  192.   space for a few days and keep them there safely?  Do you have any concept
  193.   of what would be required to create even a *small* self-sustaining colony
  194.   of even a few hundred people?  Lots and lots of money and an enormous
  195.   technological, industrial and academic base.  Do you really think they're 
  196.   going to waste those resources and training putting 'misfits' up there?
  197.  
  198.                                               --Peter Nelson
  199.  
  200. > Dillon Pyron
  201.  
  202. ------------------------------
  203.  
  204. Date: 23 Aug 88 22:16:05 GMT
  205. From: yee@ames.arc.nasa.gov  (Peter E. Yee)
  206. Subject: TRW selected to develop Advanced X-ray Astrophysics Facility (Forwarded)
  207.  
  208. Charles Redmond                                August 22, 1988
  209. Headquarters, Washington, D.C.                 4:00 p.m. EDT
  210.  
  211. Bob Lessels
  212. Marshall Space Flight Center, Huntsville, Ala.
  213.  
  214.  
  215. RELEASE:  88-118
  216.  
  217. TRW SELECTED TO DEVELOP ADVANCED X-RAY ASTROPHYSICS FACILITY
  218.  
  219.  
  220.      NASA announced today that TRW, Inc., has been selected for 
  221. final negotiations leading to the award of contracts for extended 
  222. definition and development of the space-based Advanced X-ray 
  223. Astrophysics Facility (AXAF).
  224.  
  225.      The development contract will include a mirror development 
  226. phase and a priced-option for spacecraft development and 
  227. completion of the observatory.  Exercise of the option by NASA 
  228. will require congressional approval and will be based upon the 
  229. successful fabrication of the largest of six mirror pairs to the 
  230. required resolution.  The principal place of performance will be 
  231. the TRW plant, Redondo Beach, Calif., and that of the major 
  232. subcontractor, Kodak Federal Systems Division, Rochester, New 
  233. York.  The proposed cost of the contracts is approximately $508 
  234. million.
  235.  
  236.      The facility will be the third in NASA's series of space-
  237. based great observatories, following the Hubble Space Telescope 
  238. and the Gamma Ray Observatory, into orbit in the mid-1990's. 
  239. These observatories, as well as the Space Infrared Telescope 
  240. Facility, which is to follow the X-ray observatory, will permit 
  241. simultaneous, complementary observations of astrophysical 
  242. phenomena over different wavelengths of the spectrum.
  243.  
  244.      The objective of this project is to develop a high-quality, 
  245. X-ray telescope to be used by the international scientific 
  246. community in conjunction with NASA for an operational period of 
  247. 15 years. 
  248.  
  249.      The observatory will be designed for on-orbit maintenance in 
  250. order to extend its life and to upgrade its scientific 
  251. capability.  The X-ray telescope will be used to gather data to 
  252. expand our knowledge of quasars, black holes and the geometry and 
  253. mass of the universe.
  254.  
  255.      The Marshall Space Flight Center, Huntsville, Ala., has 
  256. management responsibility for the telescope and will manage the 
  257. contract.  The AXAF program is under the direction of NASA's 
  258. Office of Space Science and Applications, Washington, D.C.
  259.  
  260.      Also proposing was Lockheed Missiles and Space, Co., 
  261. Sunnyvale, Calif.
  262.  
  263. ------------------------------
  264.  
  265. Date: 23 Aug 88 22:38:24 GMT
  266. From: tektronix!teklds!mrloog!dant@ucbvax.berkeley.edu  (Dan Tilque;1893;92-101;)
  267. Subject: Re: Why *THEY* might want to eat our lunch.
  268.  
  269. Michael MacLeod writes:
  270. >The last I heard (in lay articles) there were several theories that best
  271. >seemed to fit observed facts about the genesis of the Moon and Earth planetary
  272. >pair.  One of these called for a collision between the Earth and another
  273. >body, carving out the Moon as a result.   This also explained the abundance
  274. >of heavy elements near the top of the Earth's crust.  In Sunday supplement
  275. >fashion, one article brayed: "The Gold In Your Ring is From Another Planet!"
  276.  
  277. The gold in your ring probably owes more to hydrologic and biologic action
  278. than it does to a collision 4 billion years ago.
  279.  
  280. >If this is so, and such metal dispositions are rare in the universe (perhaps
  281. >most planets turn out to be Jupiter-size gas giants), then any kind of mining
  282. >survey is going to be of interest to those looking for accessible heavy
  283. >elements.  
  284.  
  285. 1) There are 5 terrestrial (rocky) type planets (Mercury, Venus, Earth,
  286. Moon and Mars) in our solar system.  Relative to the gaseous and icy
  287. planets in the outer solar system, these all have a high percentage of
  288. metals (probably including heavy ones) in their crusts.  There are also
  289. thousands of asteroids for which the same is also true.
  290.  
  291. 2) The rocky nature of the inner solar system bodies is not an
  292. accident.  It's probably safe to assume that many (if not most) single
  293. stars and some double star systems have many rocky bodies in their
  294. inner planetary system.
  295.  
  296. 3) While veins of heavy metals are not likely on the other terrestrial
  297. planets (no biological or hydrologic action), it's still possible to mine
  298. them if you're given sufficient energy.
  299.  
  300. 4) Iron and stoney-iron asteroids have many of their metals differentiated
  301. out (probably at least as well as many veins of ores).
  302.  
  303. >Given the unlikelihood of cheap transmutation of elements, even spacefaring
  304. >races will probably continue to be interested in rare elements.  If Earth's
  305. >crust is abnormally rich in these, we may be in for interesting times ahead.
  306.  
  307. Seems to me that it would take a lot more energy to travel several
  308. light-years than to take an asteroid apart for its materials.
  309.  
  310.  
  311. ---
  312. Dan Tilque    --    dant@twaddl.LA.TEK.COM
  313.  
  314. ------------------------------
  315.  
  316. Date: 23 Aug 88 16:39:04 GMT
  317. From: attcan!utzoo!henry@uunet.uu.net  (Henry Spencer)
  318. Subject: Re: space news from July 11 AW&ST
  319.  
  320. In article <880822121249.000001030E1@grouch.JPL.NASA.GOV> PJS@grouch.jpl.nasa.GOV (Peter Scott) writes:
  321. >I seem to remember that one of the problems with ICBMs (also solid-fuelled)
  322. >is that they have a finite and relatively short `shelf' life due to the
  323. >propellant...  These SRBs are at least 2 years old,
  324. >isn't this problem likely to be a consideration?  Unmanned or not, we can't
  325. >exactly afford to lose the Columbia...
  326.  
  327. Yes, solid fuels do have a limited shelf life; this is one reason why the
  328. USAF can justify a steady stream of Minuteman test launches from Vandenberg,
  329. since the missiles won't last forever anyway.  But two years isn't enough
  330. to make anyone really worry much.
  331.  
  332. And yes, rationally speaking, the unmanned nature of the proposed flights
  333. is almost irrelevant, since the orbiters are a lot harder to replace than
  334. the crews.
  335. -- 
  336. Intel CPUs are not defective,  |     Henry Spencer at U of Toronto Zoology
  337. they just act that way.        | uunet!attcan!utzoo!henry henry@zoo.toronto.edu
  338.  
  339. ------------------------------
  340.  
  341. Date: 22 Aug 88 20:38:11 GMT
  342. From: ndsuvax!nekinsel@uunet.uu.net  (Peter Kinsella)
  343. Subject: Re: SETI: Why don't we hear anything?
  344.  
  345. In article <4989@watdcsu.waterloo.edu>, smann@watdcsu.waterloo.edu (Shannon Mann - I.S.er) writes:
  346. > In article <561@unisv.UUCP> vanpelt@unisv.UUCP (Mike Van Pelt) writes:
  347. > - large chunk left out to conserve bandwidth -
  348. > Furthermore, as the radiosphere expands, the
  349. > transmissions become more and more weak, disrupted by background noise, etc.
  350. > Although the calculation is beyond me, I believe that, after a certain distance,
  351. > the signals would be so weak as to become part of the background noise.
  352.    
  353.      I don't suppose background noise could actually be transmissions
  354.  from various developed cultures ?   any comments ?
  355.  
  356. ------------------------------
  357.  
  358. Date: 24 Aug 88 14:43:00 GMT
  359. From: apollo!nelson_p@eddie.mit.edu  (Peter Nelson)
  360. Subject: RE:  space exploitation/exploration
  361.  
  362.  
  363.  In the mailbag today another dreamer writes...
  364.  
  365. >By room, those of us who believe in space and would invest in space mean room
  366. >for mankind to thrive with independent societies.  This is becoming impossible
  367. >on earth, with the spread of the welfare state, etc.  We do not want these
  368. >statists to do anything more than get out of the way so man can live in space
  369. >as free people.
  370.  
  371.  I might point out that the society today with with the most advanced space 
  372.  program is also the the most 'statist' society on Earth: the USSR.
  373.  
  374.  Talk is cheap (except maybe on Usenet).  Results are what count.  The 
  375.  U.S. has not had a space program to speak of for over 2 1/2 years and
  376.  it isn't clear how much of one we're going to have in the future.  Yet
  377.  I haven't seen private industry clamoring to provide an alternative.
  378.  
  379. >The greatest immorality of all is to impose ones morality on others.
  380.  
  381.   You don't say? . I thought it was torturing babies but let's not
  382.   quibble over details...
  383.  
  384. >   We need independent societies in space; you would impose your
  385. > standards, while I say only that if you do not wish to support me,
  386. > do not hinder me.
  387.  
  388.   Where have I offered to impose my standards???   All I said to the 
  389.   other guy, and I'll say it to you too, is:  What have you *actually 
  390.   done* to further this dream of yours of going into space to start a 
  391.   new society?  You're talking about a project that would absolutely
  392.   dwarf any previous engineering or technical achievement in cost and
  393.   scale!  If you want something like that to happen in your lifetime you
  394.   had better be working real hard on it now.
  395.  
  396.   BTW, I'm actually very fond of dreamers and eccentrics, as I am sometimes
  397.   one myself ;-)   America has a rich tradition of utopianism and there is
  398.   an excellent book on the subject by Dover Press called 'Heavens on Earth'
  399.   (by Mark Hollowell, I believe).  But one thing to remember is that there
  400.   have been hundreds (if not thousands) of utopian communities started 
  401.   with grand visions of how their particular philosophy would transform
  402.   life and attract millions of followers.   Most of them fizzled within
  403.   a year or so and even those that lasted for many years ultimately 
  404.   either died out or adopted mainstream values and lifestyles.  This 
  405.   notion that 'if only we could create a society of like-minded individuals
  406.   we could all be free/happy/whatever has NEVER panned out.  And by the
  407.   way, to my Libertarian friends: Historically, the most successful of
  408.   the utopian experiments have, by far, been those which adopted 
  409.   communist (NOTE THE SMALL 'c'!!) principles rather that individualist
  410.   ones.  
  411.                                        --Peter Nelson
  412.  
  413. ------------------------------
  414.  
  415. End of SPACE Digest V8 #350
  416. *******************
  417.